
:root {
    --background-color1: #000;
	--background-color2: #090909;
	--background-color3: #fff;
    --text-color1: #fff;
	--text-color2: #fff;
	--text-color3: #000;
	--text-footer: #ccc;
    --signal-color: #e74c3c;
}

@font-face {
    font-family: 'UnifrakturMaguntia';
    src: url("../font/UnifrakturMaguntia/UnifrakturMaguntia-Regular.ttf");
}

html {
    overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-color1);
  color: var(--text-color1);
  cursor: grab;
  overflow-x: hidden;
}

img{
	max-width:100%;
}

main{
	min-height: 80vh;
	background: radial-gradient(circle at bottom left, #090909, transparent);
	background-size: 110% 110%;
	position:relative;
}
header {
	min-height: 15vh;
	background-color: var(--background-color2);
	padding: 20px;
	text-align: center;
	border-bottom: dotted 4px white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap:wrap;
}
h1 {
    font-family: 'UnifrakturMaguntia', sans-serif;
    color: #fff;
}

h2:first-letter {
    font-family: 'UnifrakturMaguntia';
    font-size: larger;
}

section {
  padding: 50px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
p {
  color: #ccc;
}
footer {
	min-height: 15vh;
	border-top: dotted 4px white;
	background-color: var(--background-color2);
	color: #ccc;
	padding: 20px;
	text-align: center;
}

footer a:-webkit-any-link{
	text-decoration: none;
	color: #ccc;
    text-shadow: 0px 0px 4px black;
}

.hidden{
	display: none;
}

/*Start*/
.headerlogo{
	width: 250px;
}

.hide{
	display: none!important;
}

/*Mainmenu*/

#mainmenu ul{
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
}

#mainmenu ul li {
    margin: 0 5px;
	cursor: grabbing;
	text-shadow: 0 0 #000000;
    transition-duration: 500ms;
}

#mainmenu ul li:hover {
    text-shadow: 0px 0px 5px white;
    color: black;
}

#mainmenu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s ease;
	cursor: grab;
}

#mainmenu li a:hover {
    background-color: var(--signal-color);
}

#mainmenu li.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 80px;
    gap: 5px;
}

#mainmenu .nav svg {
    margin-bottom: -2px;
    margin-right: 5px;
    fill: white;
}

#mainmenu .nav:hover svg {
    fill: grey!important;
}



.print-card{
	background-position: center 0%;
    background-size: contain;
	animation: slideBackground 15s linear infinite;
	box-shadow: inset 0 0 15px 20px black;
}

.animate{
	animation: glow 1s linear infinite;
}

@keyframes slideBackground {
	0% {
		background-position: center 0%;
	}
	100% {
		background-position: center 199%;
	}
}

@keyframes flicker {
	0% {
		background: #00000094;
	}
	50% {
		background: transparent;
	}
	100% {
		background: #00000094;
	}
}

@keyframes glow {
	0% {
		color: #00000094;
	}
	50% {
		color: red;
	}
	100% {
		color: #00000094;
	}
}

@keyframes turnout {
	0% {
		    transform: rotate3d(1, 0.1, 0, 0deg);
	}
	100% {
		    transform: rotate3d(1, 0.1, 0, 90deg);
	}
}

.turnout{
	transition-duration: 500ms;
	animation: turnout 1s linear 1;
	transform: rotate3d(1, 0.1, 0, 90deg);
	min-height: 70vh;
}

#theater {
	display: flex;
    flex-direction: row;
    justify-content: center;
}

#theater .stage {
    overflow: hidden;
	width: 100%;
}

#theater .stage.active {
    width: 100%;
	opacity: 1;
	margin-right: 0%;
}

#theater .stage:not(.active) {
	width: 100%;
	margin-right: -100%;
    opacity: 0;
	max-height: 100vh;
}

#userarea{
	transition-duration:500ms;
	height:auto;
	min-height:80vh;
}

#userarea:not(.active){
	max-height: 0;
}

#newuserarea{
	transition-duration:500ms;
}

#newuserarea:not(.newcontent){
	opacity: 0;
}
#newuserarea.newcontent{
	opacity: 1;
}

#userarea.turnout{
	height:0;
}

/**/

.fulllink{
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	display: flex;
    align-items: center;
    justify-content: center;
}

.frontnone{
	z-index:10;
	pointer-events:none;
	text-shadow: 0 0 4px red;
}

/*Overlay*/

#overlay:not(.active) {
	opacity: 0;
	pointer-events:none;
}

#overlay {
    transition-duration: 1500ms;
    opacity: 1;
    /* background: #ffffff75; */
    z-index: 100;
    background-image: linear-gradient(90deg, black, transparent, transparent, black), url(../img/logo/Logo-Traumgeist-Geist.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#shoppreview {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: contain;
    background-position: center center;
    display: flex;
    justify-content: flex-end;
	align-items: flex-end;
}

#shoppreview p{
    background-color: black;
	padding: 5px;
	border-radius: 15px;
}

#shoppreview button {
    padding: 5px 10px;
    border-radius: 15px;
    background-image: linear-gradient(45deg, black, #939292);
    color: white;
    box-shadow: inset 1px 1px 5px 3px black;
    margin: 15px;
	margin-bottom: 15px;
	z-index: 600;
}

#shoppreview button:hover {
	box-shadow: inset 1px 1px 0px 0px black;
	cursor: pointer;
}

@media (max-width: 768px) {
	header {
		justify-content: Center;
		min-height: 10vh;
	}
	footer{
		min-height: 10vh;
	}
	section{
		padding: 5%;
	}
	img{
		max-width:100%;
	}
	#shoppreview{
		background-size: cover;
		flex-direction: column;
	}
	#shoppreview button{
		margin: 15px;
	}
}

footer .footermenu {
    display: flex;
    gap: 5px;
    justify-content: center;
	flex-wrap: wrap;
}

footer .footermenu button:hover {
    cursor: pointer;
    text-shadow: 1px 1px 5px #ffffff;
    color: black;
}

button {
    background: #090909;
    color: white;
    border-radius: 5px;
    padding: 2px 10px;
}

button:first-letter {
    font-family: 'UnifrakturMaguntia';
    font-size: large;
}

.textleft{
	text-align: left;
}

.background-image{
	background-image: url(/resource/img/pic/dragons-background-light.png);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: auto 75%;
}

.Firstletter .description:first-letter,.Firstletter p:first-letter {
	font-family: 'UnifrakturMaguntia';
    font-weight: bolder;
    font-size: larger;
    font-family: math;
    text-decoration: underline;
}